home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
EnigmA Amiga Run 1995 October
/
EnigmA AMIGA RUN 01 (1995)(G.R. Edizioni)(IT)[!][issue 1995-10][Aminet 7].iso
/
Aminet
/
dev
/
gcc
/
ixemul_src.lha
/
ixemul-41.0
/
library
/
tmp_pipe.h
< prev
next >
Wrap
C/C++ Source or Header
|
1994-08-19
|
490b
|
15 lines
/* information for the temporary implementation of pipes.
PIPE: has the big disadvantage that it blocks in the most unpleasent
situations, and doesn't send SIGPIPE to processes that write on
readerless pipes. Unacceptable for this library ;-)) */
#define PIPE_SIZE 5120
struct tmp_pipe {
u_short tp_flags; /* see below */
u_char tp_buffer[PIPE_SIZE];
u_char *tp_reader, *tp_writer; /* buffer pointers.
when tp_reader==tp_writer, no data
is available */
};